home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1995.rar / 1995 / DEC / DI9512AC / logger.dpr < prev    next >
Text File  |  1995-07-05  |  298b  |  17 lines

  1. program Logger;
  2.  
  3. uses
  4.   Forms,
  5.   Fmain in 'FMAIN.PAS' {MainForm},
  6.   Example in 'EXAMPLE.PAS',
  7.   acList in 'ACLIST.PAS',
  8.   acStream in 'ACSTREAM.PAS';
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Title := 'Resource Logger';
  14.   Application.CreateForm(TMainForm, MainForm);
  15.   Application.Run;
  16. end.
  17.